home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////
- // DictionaryTable
- // by Charles Lloyd
- ////////////////////////
-
-
- DictionaryTable: DictionaryTable {
- dictionary=localDictionary;
- cellPadding = 2;
- };
-
- KeyTextField: WOTextField {
- value = keyFieldValue;
- };
-
- ValueTextField: WOTextField {
- value = valueFieldValue;
- };
-
- AddEntrySubmit: WOSubmitButton {
- action = addEntry;
- value = "Update Dictionary"
- };
-
- DeleteKeyTextField: WOTextField {
- value = deleteKeyFieldValue;
- };
-
- DeleteEntrySubmit: WOSubmitButton {
- action = deleteEntry;
- value = "Delete Key"
- };
-
- ComponentDescription: ComponentDescription {
- componentName = "DictionaryTable";
- };
-
- ShowSourceControls: ShowSource {
- componentName = "DictionaryTable";
- };
-